home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Tools - Objects / C++ / MPW C++ 3.1b4 / C++ 3.1b4 ReadMe next >
Text File  |  1990-07-24  |  1KB  |  36 lines

  1. ABOUT C++ 3.1b4...
  2.  
  3. The  MacApp C++ Headers folder is no longer located in this folder, since they have been incorporated into MacApp 2.0 on E.T.O.
  4.  
  5. The C++ 3.1b4 example code will not compile correctly under MPW 3. 2 EXP due to the new library file structure.  In order to compile the C++ 3.1b4 examples, you must change the Makefiles.
  6.  
  7. Presently, the CPlusShapesApp.make makefile (located in :Examples:CPlusExamples:) includes the following dependency:
  8.  
  9. CPlusShapesApp ƒƒ {Objs} CPlusAppLib.o CPlusShapesApp.make
  10.         Link -d -o {Targ} {SymOpts} ∂
  11.                 {Objs} ∂
  12.                 CPlusAppLib.o ∂
  13.                 "{CLibraries}"CPlusLib.o ∂
  14. (1)            "{CLibraries}"CRuntime.o ∂
  15.                 "{CLibraries}"StdCLib.o ∂
  16. (2)            "{CLibraries}"CInterface.o ∂
  17.                 "{Libraries}"Interface.o
  18.         SetFile {Targ} -t APPL -c 'MOOT' -a B
  19.  
  20. Line (1) must be changed to:
  21.  
  22.                 "{Libraries}"Runtime.o ∂
  23.  
  24. and line (2) must be deleted.  The fixed code appears as follows:
  25.         
  26. CPlusShapesApp ƒƒ {Objs} CPlusAppLib.o CPlusShapesApp.make
  27.         Link -d -o {Targ} {SymOpts} ∂
  28.                 {Objs} ∂
  29.                 CPlusAppLib.o ∂
  30.                 "{CLibraries}"CPlusLib.o ∂
  31.                 "{Libraries}"Runtime.o ∂
  32.                 "{CLibraries}"StdCLib.o ∂
  33.                 "{Libraries}"Interface.o
  34.         SetFile {Targ} -t APPL -c 'MOOT' -a B
  35.  
  36. These two lines must be changed in the other two makefiles that are also in the examples folder.